home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / exer / chap1 / exer0111 / Forest.java next >
Encoding:
Java Source  |  1997-04-19  |  184 b   |  9 lines

  1. import Flora.Tree;
  2.  
  3. public class Forest {
  4.    public static void main(String[] args) {
  5.       Tree t = new Tree();
  6.       System.out.println("The tree's age is " + t.age);
  7.    }
  8. }
  9.